home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / vprintf.c < prev    next >
C/C++ Source or Header  |  1993-10-11  |  160b  |  11 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "lib.h"
  4. int
  5. vprintf(fmt, args)
  6.     const char *fmt;
  7.     va_list args;
  8. {
  9.     return(_doprnt(fputc, stdout, fmt, args));
  10. }
  11.